home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hráč 2004 May
/
Hrac_69_2004-05_dvd.iso
/
freeware
/
Tweak FX
/
tweakfx.exe
/
plugins
/
Folder Icon
/
Folder Icon_onload.txt
< prev
next >
Wrap
Text File
|
2003-09-19
|
667b
|
22 lines
Sub OnLoad()
set txtIco = sh.ActiveForm.Controls.Add("VB.textbox", "txtIco")
set txtIcoV = sh.ActiveForm.Controls.Add("VB.textbox", "txtIcoV")
set fraPlugin = sh.ActiveForm.Controls.Item("fraPlugin")
txtIco.move fraPlugin.Left + 100, fraPlugin.Top + 200, 2000, 100
txtIco.Visible = True
txtIco.zorder 0
txtIco.backcolor=&H8000000F&
txtIco.locked=true
txtIco.text = "Folder icon: "
txtIcoV.move fraPlugin.Left + 2400, fraPlugin.Top + 200, fraPlugin.width-2500, 100
txtIcoV.Visible = True
txtIcoV.zorder 0
sh.reg_read "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Bitmap", ico
txtIcoV.text=ico
End Sub